From 69d7840c25459d748cc690d159cd9482f7610464 Mon Sep 17 00:00:00 2001 From: Sergey Ponomarev Date: Sun, 2 Jun 2024 18:45:03 +0300 Subject: [PATCH] luci-app-acme: Set default validation_method to standalone In the 585df1d13769c6449458db425644927b0882b04a I changed the validation_method to webroot by mistake because I thought this is a default in the acme.sh. Signed-off-by: Sergey Ponomarev --- .../luci-app-acme/htdocs/luci-static/resources/view/acme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js index 97e9914387..818fe39baf 100644 --- a/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js +++ b/applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js @@ -76,7 +76,7 @@ return view.extend({ o.value('standalone', _('Standalone')); o.value('webroot', _('Webroot')); o.value('dns', _('DNS')); - o.default = 'webroot'; + o.default = 'standalone'; o = s.taboption('general', form.DynamicList, "domains", _("Domain names"), _("Domain names to include in the certificate. " + -- 2.30.2